projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
57063ec
)
(insert-kbd-macro): Escape double quote character. From Thomas W
author
Glenn Morris
<rgm@gnu.org>
Wed, 23 Jul 2003 18:00:25 +0000
(18:00 +0000)
committer
Glenn Morris
<rgm@gnu.org>
Wed, 23 Jul 2003 18:00:25 +0000
(18:00 +0000)
Murphy <twm@andrew.cmu.edu>.
lisp/macros.el
patch
|
blob
|
history
diff --git
a/lisp/macros.el
b/lisp/macros.el
index ee3b16f77645563aa2d27c5ac2ce1c6501e0ccf2..b708683bdfa4ad57488ae624b43201d55bb00b4b 100644
(file)
--- a/
lisp/macros.el
+++ b/
lisp/macros.el
@@
-150,6
+150,8
@@
use this command, and then save the file."
(setq mods (cdr mods)))
(cond ((= char ?\\)
(insert "\\\\"))
+ ((= char ?\")
+ (insert "\\\""))
((= char ?\;)
(insert "\\;"))
((= char 127)